home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / routes.sql < prev    next >
Text File  |  2000-05-12  |  884b  |  22 lines

  1. /* RCSVER $Id: routes.sql,v 1.6 2000-03-15 14:16:38-06 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        routes.sql
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the routes table. This table contains all routes
  9. *        defined in the system.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE routes
  13. (
  14.     id    NUMBER(38),        /* ID of route */
  15.     descr    VARCHAR2(30),    /* Description of route */
  16.     wayid    NUMBER(38),        /* Route ID for wayfarer */
  17.     config_num    NUMBER(38),    /* Configuration number */
  18.     autogen    NUMBER(1),    /* Was this route auto-generated from trapeze? 1=YES 0=NO */
  19.                     /*   If NO, trapeze importing will not overwrite it */
  20.     CONSTRAINT pk_routes PRIMARY KEY (id, config_num)
  21. );
  22.